home *** CD-ROM | disk | FTP | other *** search
/ Champak 142 / Volume 142 Oct 17 2011 - Damaged.iso / Games / parasite-x.swf / scripts / DefineButton2_145 / BUTTONCONDACTION on(release).as
Text File  |  2011-10-17  |  197b  |  12 lines

  1. on(release){
  2.    if(_root.score >= 2500)
  3.    {
  4.       _root.firerate += 0.025;
  5.       _root.score -= 2500;
  6.       if(_root.firerate > 10)
  7.       {
  8.          _root.firerate = 10;
  9.       }
  10.    }
  11. }
  12.